home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Windows / GrayRegion.cp < prev    next >
Text File  |  2000-06-23  |  311b  |  24 lines

  1. // GrayRegion.cp
  2.  
  3. #ifndef GrayRegion_h
  4. #include "GrayRegion.h"
  5. #endif
  6.  
  7. #include <Windows.h>
  8.  
  9. GrayRegion::GrayRegion()
  10.   : region( GetGrayRgn() )
  11.   {
  12.   }
  13.  
  14. const GrayRegion& GrayRegion::The()
  15.   {
  16.     static GrayRegion gray;
  17.     return gray;
  18.   }
  19.  
  20. Rectangle GrayRegion::Bounds() const
  21.   {
  22.     return (*region)->rgnBBox;
  23.   }
  24.